home *** CD-ROM | disk | FTP | other *** search
- /*
- * Window Maker window manager
- *
- * Copyright (c) 1997, 1998 Alfredo K. Kojima
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
- * USA.
- */
-
- #ifndef WMSCREEN_H_
- #define WMSCREEN_H_
-
- #include "wconfig.h"
- #include "WindowMaker.h"
- #include "plugin.h"
- #include <sys/types.h>
-
- #include <proplist.h>
-
-
- #define WTB_LEFT 0
- #define WTB_RIGHT 1
-
- #define WTB_FOCUSED 0
- #define WTB_UNFOCUSED 2
- #define WTB_PFOCUSED 4
- #define WTB_MENU 6
-
- #ifdef GNOME_STUFF
- /* an area of the screen reserved by some window */
- typedef struct WReservedArea {
- WArea area;
- Window window;
- struct WReservedArea *next;
- } WReservedArea;
- #endif
-
-
- typedef struct WAppIconChain {
- struct WAppIcon *aicon;
- struct WAppIconChain *next;
- } WAppIconChain;
-
-
- /*
- * each WScreen is saved into a context associated with it's root window
- */
- typedef struct _WScreen {
- int screen; /* screen number */
-
- #if 0
- Atom managerAtom; /* WM_Sn atom for manager selection */
- Window managerWindow; /* window for manager selection */
- #endif
- Window info_window; /* for our window manager info stuff */
-
- int scr_width; /* size of the screen */
- int scr_height;
-
- #ifdef VIRTUAL_DESKTOP
- Window virtual_edge_u;
- Window virtual_edge_d;
- Window virtual_edge_l;
- Window virtual_edge_r;
- #endif
-
- Window root_win; /* root window of screen */
- int depth; /* depth of the default visual */
- Colormap colormap; /* root colormap */
- int root_colormap_install_count;
- struct WWindow *original_cmap_window; /* colormap before installing
- * root colormap temporarily */
- struct WWindow *cmap_window;
- Colormap current_colormap;
-
- Window w_win; /* window to use as drawable
- * for new GCs, pixmaps etc. */
- Visual *w_visual;
- int w_depth;
- Colormap w_colormap; /* our colormap */
-
- Window no_focus_win; /* window to get focus when nobody
- * else can do it */
-
- struct WWindow *focused_window; /* window that has the focus
- * Use this list if you want to
- * traverse the entire window list
- */
-
- WMBag *selected_windows;
-
- struct WAppIcon *app_icon_list; /* list of all app-icons on screen */
-
- struct WApplication *wapp_list; /* list of all aplications */
-
- WMBag *stacking_list; /* bag of lists of windows
- * in stacking order.
- * Indexed by window level
- * and each list on the array
- * is ordered from the topmost to
- * the lowest window
- */
-
- int window_count; /* number of windows in window_list */
-
- int workspace_count; /* number of workspaces */
-
- struct WWorkspace **workspaces; /* workspace array */
-
- int current_workspace; /* current workspace number */
-
-
- #ifdef GNOME_STUFF
- WReservedArea *reservedAreas; /* used to build totalUsableArea */
- #endif
-
- WArea usableArea; /* area of the workspace where
- * we can put windows on, as defined
- * by other clients (not us) */
- WArea totalUsableArea; /* same as above, but including
- * the dock and other stuff */
-
-
- WMPixel black_pixel;
- WMPixel white_pixel;
-
- WMPixel light_pixel;
- WMPixel dark_pixel;
-
- Pixmap stipple_bitmap;
- Pixmap transp_stipple; /* for making holes in icon masks for
- * transparent icon simulation */
- WMFont *title_font; /* default font for the titlebars */
- WMFont *menu_title_font; /* font for menu titlebars */
- WMFont *menu_entry_font; /* font for menu items */
- WMFont *icon_title_font; /* for icon titles */
- WMFont *clip_title_font; /* for clip titles */
- WMFont *info_text_font; /* text on things like geometry
- * hint boxes */
- WMFont *workspace_name_font;
-
- WMPixel select_pixel;
- WMPixel select_text_pixel;
- /* foreground colors */
- WMPixel window_title_pixel[3]; /* window titlebar text (foc, unfoc, pfoc)*/
- WMPixel menu_title_pixel[3]; /* menu titlebar text */
- WMPixel clip_title_pixel[2]; /* clip title text */
- WMPixel mtext_pixel; /* menu item text */
- WMPixel dtext_pixel; /* disabled menu item text */
- WMPixel line_pixel;
- WMPixel frame_border_pixel; /* frame border */
- #ifdef DRAWSTRING_PLUGIN
- WFunction *drawstring_func[W_STRING_MEMBERS];
- /* ftitle, utitle, ptitle, mtitle, mtext */
- #endif
-
-
- union WTexture *menu_title_texture[3];/* menu titlebar texture (tex, -, -) */
- union WTexture *window_title_texture[3]; /* win textures (foc, unfoc, pfoc) */
- union WTexture *resizebar_texture[3];/* window resizebar texture (tex, -, -) */
-
- union WTexture *menu_item_texture; /* menu item texture */
-
- struct WTexSolid *menu_item_auxtexture; /* additional texture to draw menu
- * cascade arrows */
- struct WTexSolid *icon_title_texture;/* icon titles */
-
- struct WTexSolid *widget_texture;
-
- struct WTexSolid *icon_back_texture; /* icon back color for shadowing */
-
- GC window_title_gc; /* window title text GC */
- GC menu_title_gc; /* menu titles */
-
- GC icon_title_gc; /* icon title background */
- GC clip_title_gc; /* clip title */
- GC menu_entry_gc; /* menu entries */
- GC select_menu_gc; /* selected menu entries */
- GC disabled_menu_entry_gc; /* disabled menu entries */
- GC info_text_gc; /* for size/position display */
- GC icon_select_gc;
-
- GC frame_gc; /* gc for resize/move frame (root) */
- GC line_gc; /* gc for drawing XORed lines (root) */
- GC copy_gc; /* gc for XCopyArea() */
- GC stipple_gc; /* gc for stippled filling */
- GC draw_gc; /* gc for drawing misc things */
- GC mono_gc; /* gc for 1 bit drawables */
-
- #ifndef NEWSTUFF
- struct WPixmap *b_pixmaps[PRED_BPIXMAPS]; /* internal pixmaps for buttons*/
- #endif
- struct WPixmap *menu_radio_indicator;/* left menu indicator */
- struct WPixmap *menu_check_indicator;/* left menu indicator for checkmark */
- struct WPixmap *menu_mini_indicator; /* for miniwindow */
- struct WPixmap *menu_hide_indicator; /* for hidden window */
- struct WPixmap *menu_shade_indicator; /* for shaded window */
- int app_menu_x, app_menu_y; /* position for application menus */
-
- #ifndef LITE
- struct WMenu *root_menu; /* root window menu */
- struct WMenu *switch_menu; /* window list menu */
- #endif
- struct WMenu *workspace_menu; /* workspace operation */
- struct WMenu *window_menu; /* window command menu */
- struct WMenu *icon_menu; /* icon/appicon menu */
- struct WMenu *workspace_submenu; /* workspace list for window_menu */
-
- struct WDock *dock; /* the application dock */
- struct WPixmap *dock_dots; /* 3 dots for the Dock */
- Window dock_shadow; /* shadow for dock buttons */
- struct WAppIcon *clip_icon; /* The clip main icon */
- struct WMenu *clip_menu; /* Menu for clips */
- struct WMenu *clip_submenu; /* Workspace list for clips */
- struct WMenu *clip_options; /* Options for Clip */
- struct WMenu *clip_ws_menu; /* workspace menu for clip */
- struct WDock *last_dock;
- WAppIconChain *global_icons; /* for omnipresent icons chain in clip */
- int global_icon_count; /* How many global icons do we have */
-
- Window clip_balloon; /* window for workspace name */
-
- int keymove_tick;
-
- #ifdef GRADIENT_CLIP_ARROW
- Pixmap clip_arrow_gradient;
- #endif
-
- struct RContext *rcontext; /* wrlib context */
-
- WMScreen *wmscreen; /* for widget library */
-
- struct RImage *icon_tile;
- struct RImage *clip_tile;
- Pixmap icon_tile_pixmap; /* for app supplied icons */
-
- Pixmap def_icon_pixmap; /* default icons */
- Pixmap def_ticon_pixmap;
-
- struct WDialogData *dialog_data;
-
-
- struct W_GeometryView *gview; /* size/position view */
-
- #ifdef NEWSTUFF
- struct RImage *button_images[2][PRED_BPIXMAPS];/* scaled tbar btn images */
- #endif
-
- /* state and other informations */
- short cascade_index; /* for cascade window placement */
-
- proplist_t session_state;
-
- /* for double-click detection */
- Time last_click_time;
- Window last_click_window;
- int last_click_button;
-
- /* balloon help data */
- struct _WBalloon *balloon;
-
- /* workspace name data */
- Window workspace_name;
- WMHandlerID *workspace_name_timer;
- struct WorkspaceNameData *workspace_name_data;
-
- /* for raise-delay */
- WMHandlerID *autoRaiseTimer;
- Window autoRaiseWindow; /* window that is scheduled to be
- * raised */
-
-
- Window scrolledFMaximize; /* full maximized window which was
- scrolled down for titlebar access */
-
- /* for window shortcuts */
- WMBag *shortcutWindows[MAX_WINDOW_SHORTCUTS];
-
- #ifdef XDND
- char *xdestring;
- #endif
-
- #ifdef KWM_HINTS
- Window kwm_dock;
- #endif
-
- int helper_fd;
- pid_t helper_pid;
-
- struct {
- unsigned int startup:1; /* during window manager startup */
- unsigned int regenerate_icon_textures:1;
- unsigned int dnd_data_convertion_status:1;
- unsigned int root_menu_changed_shortcuts:1;
- unsigned int added_workspace_menu:1;
- unsigned int startup2:1; /* startup phase 2 */
- unsigned int supports_tiff:1;
- unsigned int clip_balloon_mapped:1;
- unsigned int next_click_is_not_double:1;
- unsigned int backimage_helper_launched:1;
- /* some client has issued a WM_COLORMAP_NOTIFY */
- unsigned int colormap_stuff_blocked:1;
- unsigned int doing_alt_tab:1;
- unsigned int jump_back_pending:1;
- #ifdef KWM_HINTS
- unsigned int kwm_syncing_name:1;
- unsigned int kwm_syncing_count:1;
- #endif
- } flags;
- } WScreen;
-
-
- #define WSS_ROOTMENU (1<<0)
- #define WSS_SWITCHMENU (1<<1)
- #define WSS_WSMENU (1<<2)
-
- /* changes must update wSaveScreenState/getWorkspaceState */
- typedef struct WWorkspaceState {
- int flags;
- int workspace;
- #if 0 /* obsoleted by saving menus position in WMState */
- int menu_x, menu_y;
- int smenu_x, smenu_y;
- int wmenu_x, wmenu_y;
- #endif
- } WWorkspaceState;
-
-
- WScreen *wScreenInit(int screen_number);
- void wScreenSaveState(WScreen *scr);
- void wScreenRestoreState(WScreen *scr);
-
- int wScreenBringInside(WScreen *scr, int *x, int *y, int width, int height);
-
- /* in startup.c */
- WScreen *wScreenWithNumber(int i);
- WScreen *wScreenForRootWindow(Window window); /* window must be valid */
- WScreen *wScreenSearchForRootWindow(Window window);
- WScreen *wScreenForWindow(Window window); /* slower than above functions */
-
- void wScreenFinish(WScreen *scr);
-
- void wScreenUpdateUsableArea(WScreen *scr);
-
- #endif
-